home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20010306-20010921 / 000045_news@columbia.edu _Mon Apr 2 12:52:11 2001.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.59.30])
  3.     by fozimane.cc.columbia.edu (8.9.3/8.9.3) with ESMTP id MAA21745
  4.     for <kermit.misc@cpunix.cc.columbia.edu>; Mon, 2 Apr 2001 12:52:10 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.9.3/8.9.3) id MAA24033
  7.     for kermit.misc@watsun.cc.columbia.edu; Mon, 2 Apr 2001 12:50:02 -0400 (EDT)
  8. X-Authentication-Warning: newsmaster.cc.columbia.edu: news set sender to <news> using -f
  9. From: fdc@columbia.edu (Frank da Cruz)
  10. Subject: Re: Dazed and Confused...
  11. Date: 2 Apr 2001 16:50:01 GMT
  12. Organization: Columbia University
  13. Message-ID: <9aaajp$neu$1@newsmaster.cc.columbia.edu>
  14. To: kermit.misc@columbia.edu
  15.  
  16. In article <3ac8a90d$1_2@news2.one.net>,
  17. Christopher T. Mooney <cmooney@entek.com> wrote:
  18. :     I am probably re-iterating previous posts, but I was hoping someone here
  19. : could help me out...  I am trying to write an application that will
  20. : communicate to a Kermit server, and I would assume that there are
  21. : programming libraries that exist for sending Kermit commands, but I am not
  22. : really sure (even after some searching) where to find them...  Is the
  23. : C-Kermit package something that has an API that I can program to?
  24. :
  25. Yes, its command and scripting language.
  26.  
  27. : Or is
  28. : there a more general library out there for programming?  Barring that is
  29. : there a good on-line description of the Kermit protocol that describes all
  30. : of the packets that I could access???
  31. You don't need to implement the Kermit protocol.  Just use C-Kermit itself
  32. for all the communication and file-transfer parts of your application.  It
  33. can make the connection, log in, issue any command at all to the server,
  34. do whatever you want with the results, log out, and disconnect, all
  35. programmatically.  If you already have a connection and you just want to
  36. execute Kermit protocol, Kermit can do that too.
  37.  
  38. For more on this topic see:
  39.  
  40.   The C-Kermit script libary
  41.     http://www.columbia.edu/kermit/ckscripts.html
  42.  
  43.   How to embed Kermit in your application
  44.     http://www.columbia.edu/kermit/embed.html
  45.  
  46. If you have specific questions, post them here if they are of general
  47. interest, or send them to kermit-support@columbia.edu.
  48.  
  49. - Frank